home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-10-25 | 1.7 KB | 61 lines | [TEXT/MPS ] |
- {[a-,body+,h-,o=100,r+,rec+,t=4,u+,#+,j=20/57/1$,n+]}
- { UMacApp.p }
- { Copyright © 1984-1990 Apple Computer, Inc. All rights reserved. }
-
- {$IFC UNDEFINED UsingIncludes}
- {$SETC UsingIncludes := FALSE}
- {$ENDC}
-
- UNIT UMacApp;
-
- INTERFACE
-
- USES
- {$SETC __UMacApp__ := TRUE}
- { • MacApp }
- {$U $$Shell(MAPInterfaces)UMacAppUtilities} UMacAppUtilities,
- {$U $$Shell(MAPInterfaces)UViewCoords} UViewCoords,
- {$U $$Shell(MAPInterfaces)UFailure} UFailure,
- {$U $$Shell(MAPInterfaces)UPatch} UPatch,
- {$U $$Shell(MAPInterfaces)UMemory} UMemory,
- {$U $$Shell(MAPInterfaces)UMenuSetup} UMenuSetup,
- {$U $$Shell(MAPInterfaces)UObject} UObject,
- {$U $$Shell(MAPInterfaces)UList} UList,
- {$U $$Shell(MAPInterfaces)UAssociation} UAssociation,
-
- { • Implementation use }
- {$U $$Shell(MAPInterfaces)UBusyCursor} UBusyCursor,
- {$U $$Shell(MAPInterfaces)ULoMem} ULoMem,
- {$U $$Shell(MAPInterfaces)UDebug} UDebug,
- {$IFC qInspector}
- {$U $$Shell(MAPInterfaces)UInspector} UInspector,
- {$ENDC}
-
- ToolUtils, Resources, Fonts, Desk, FixMath, Controls,
- Windows, Dialogs, Packages, Script, Traps, OSEvents, Devices
- , DiskInit, Errors, PasLibIntf;
-
- {$SETC __UMacApp__ := FALSE}
- { • Include the public interface }
- {$SETC _UMacAppIncludes := UsingIncludes}
- {$SETC UsingIncludes := TRUE}
- {$I+}
- {$I $$Shell(MAPInterfaces)UMacApp.p}
- {$SETC UsingIncludes := _UMacAppIncludes}
-
- IMPLEMENTATION
-
- {$I UMacApp.Globals.p}
- {$I UMacApp.TEvtHandler.p}
- {$I UMacApp.TApplication.p}
- {$I UMacApp.TDocument.p}
- {$I UMacApp.TView.p}
- {$I UMacApp.TWindow.p}
- {$I UMacApp.TScroller.p}
- {$I UMacApp.TCommand.p}
- {$I UMacApp.TControls.p}
- {$I UMacApp.TDeskScrapView.p}
- {$I UMacApp.TPrintHandler.p}
-
- END.
-